home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 25 / AMIGAplus Sonderheft 25 (2000)(Falke)(DE)(Track 1 of 4)[!].iso / Updates / HD-Installer / jst_dev / InstallWizard / installer-parts / Copy-osemu < prev    next >
Text File  |  2000-04-12  |  401b  |  23 lines

  1. ;; copy/update OS-Emu
  2.  
  3. (if (exists "C:OSEmu.400")
  4.  
  5. (set install_osemu
  6.     (askbool
  7.         (prompt    "Do you need to update OSEmu OS emulation module?")
  8.         (help    "An outdated version of C:OSEmu.400 won't allow to run the game")
  9.         (choices "Update" "Leave")
  10.         (default 2)
  11.     )
  12. )
  13. (set install_osemu 1)
  14. )
  15.  
  16. (if (= 1 install_osemu)
  17.     (copyfiles (source "OSEmu.400")
  18.                (dest "C:")
  19.     )
  20. )
  21.  
  22. ;; end copy/update OSEmu
  23.